From 5687609fc16f23c5de996f338281e9be6ad738fd Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc kop@karlpinc.com" Date: Tue, 14 Jul 2026 21:14:00 +0000 Subject: [PATCH] Fix typos in constraint names --- db/schemas/sokwedb/tables/create/events.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db/schemas/sokwedb/tables/create/events.m4 b/db/schemas/sokwedb/tables/create/events.m4 index 54420bb..e0e2200 100644 --- a/db/schemas/sokwedb/tables/create/events.m4 +++ b/db/schemas/sokwedb/tables/create/events.m4 @@ -79,11 +79,11 @@ CREATE TABLE events ( , 'sdb_pg_event')) ,start TIME NOT NULL noseconds_check(`Start') - CONSTRAINT "Start cannot be before sdb_min_events_start" + CONSTRAINT "Start cannot be before sdb_min_event_start" CHECK (start >= 'sdb_min_event_start') ,stop TIME NOT NULL noseconds_check(`Stop') - CONSTRAINT "Stop cannot be after sdb_max_events_stop" + CONSTRAINT "Stop cannot be after sdb_max_event_stop" CHECK (stop <= 'sdb_max_event_stop') ,certainty TEXT NOT NULL REFERENCES certainties -- 2.34.1